body, html {
    margin: 0;
    padding: 0;
    background-image: url(../trial\ bg.png);
    background-size: cover; /* Ensures the image scales to cover the entire page */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    min-height: 100%; /* Ensures the body extends for content taller than the viewport */
}

.navbar {
    padding: 1rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* Darker shadow gradient */
    position: absolute; /* Ensures it overlays the carousel */
    width: 100%;
    z-index: 1000; /* Keeps it above other elements */
}
.navbar-brand{
  font-size: 1.7rem;
}
.navbar-nav {
  font-size: 1.2rem;
  margin-left: auto; /* Pushes nav items to the right */
}

.nav-link, .navbar-brand {
    font-family: "Aboreto", system-ui; /* Apply MonteCarlo font */
    color: black; /* Change color as needed for visibility */
    z-index: 10;
}

.navbar a:hover{
  color:white;
}
.navbar-brand {
    font-size: 2rem;
}
.col-lg-6{
  padding: 0!important;

}

.blog-post {
    padding: 30px;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050; /* Above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for background */
    overflow: hidden; /* Prevent scrolling */
  }

  .modal-content {
    align-items: center;
    margin: auto;
    display: block;
    max-width: 50%; /* Limit width to 80% of viewport */
    max-height: 70%; /* Limit height to 80% of viewport */
    border: none;
    outline: none;
  }

  .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
  }
  .features-section{
    padding: 60px;
  }
  .features{
    background-color: rgba(255, 255, 255, 0.38);
  }
 

 /* Ensure images have rounded corners */
.card img {
    border-radius: 10px; /* Rounded corners for images */
    width: 100%; /* Fill the card width */
    height: 300px; /* Fixed height for consistency */
    object-fit: cover; /* Crop the images to fit */
}

/* Card styling */
.card {
  border: 2px solid #000; /* Solid black border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
  outline: 3px solid #f1f1f1; /* Add an outer white outline for style */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
}


.card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Optional: Mobile responsiveness adjustment */
@media (max-width: 767px) {
    .row-cols-md-3 {
        display: block; /* Stack the images on small screens */
    }
}
.about-rooms .text{
  font-style: italic;
  font-size: 1.5rem; 
}
.header{
  font-family:  "MonteCarlo", cursive;
  font-size: 5rem;
}
.footer{
  text-align: center;
  color: white;
 
  padding-top: 0px;
  padding: 10px;
}

.footer-main{
  font-size: 3rem;
  font-family: "MonteCarlo", cursive;  ;
}
.footer h5, 
.footer a {
  color: white; /* Set text color to white */
}

.footer a:hover {
  color: #181610;
  text-decoration: underline; /* Optional: Underline on hover for better UX */
}

.footer-box{
  min-width: 300px;
  font-family: "Cinzel", serif;
}
.footer-logo {
  padding: 0%;
  margin: 0%;
  height: 150px; /* Adjust the size of the logo */
  margin-right: 0; /* Space between the logo and the text */
}
footer.py-5{
  padding-bottom: 0!important;
}
footer.d-flex{
  padding-bottom: 0!important;
}

@media (max-width: 576px) {
  /* Navbar Styling */
  .navbar {
    padding:5px;
    position: absolute; /* Overlay on the carousel */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-size: 12px; /* Smaller font for small devices */
}

.navbar-brand {
    font-size: 16px; /* Slightly larger for branding */
    color:black; /* Ensure visibility */
}

.nav-link {
    font-size: 12px; /* Smaller font for links */
    color: black;
   
}
.navbar a:hover{
    color:white;
    text-decoration: underline;
}
.navbar-toggler {
    border-color: #fff; /* White border for toggle icon */
}
.navbar-collapse {
    text-align: right;
}

.navbar-toggler-icon {
    width: 20px; /* Set smaller width */
    height: 20px; /* Set smaller height */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28150, 150, 150, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.header { 
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 30px;
  font-size: 2.5rem; /* Smaller heading */
}
br{
  display: none;
}

  /* About Section */
  .about-rooms .text {
    padding: 10px;
    font-size: 0.7rem; /* Smaller font size */
    line-height: 1.4;
    margin: 0 10px; /* Adjust horizontal spacing */
  }

  /* Room Photos Section */
  .container.py-5 {
    padding: 30px!important;
    margin: 0; /* Remove extra row margin */
  }

  .container-py-5.col {
    width: 100%; /* Full width for each image */
    margin-bottom: 15px; /* Add space between cards */
     /* Add horizontal padding */
  }

  .card {
    border: none; /* Remove border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow for a clean look */
  }

  .card img {
    width: 100%; /* Full width of the card */
    height: 180px; /* Reduced height for smaller images */
    object-fit: cover; /* Maintain aspect ratio while cropping */
    border-radius: 8px; /* Slightly rounded corners */
  }

  /* Features Section */
  .features h1 {
    font-size: 1.8rem;
  }

  .features h3 {
    font-size: 1.2rem;
  }

  .features p,
  .features li {
    font-size: 0.9rem;
  }
  /*footer section*/
.footer {
  text-align: center; /* Center the text */
  padding: 20px 10px; /* Add padding to footer for better spacing */
}
.footer-logo {
  padding: 0%;
  margin: 0%;
  height: 100px; /* Adjust the size of the logo */
  margin-right: 0; /* Space between the logo and the text */
}
/* Footer boxes (For Bookings contact and Quick Links) */
.footer-box {
  width: 100%; /* Make each box take up the full width */
  margin: 10px 0; /* Add some space between the boxes */
}

.footer-box h4 {
  font-size: 1.2rem; /* Adjust the heading font size */
  margin-bottom: 10px; /* Add space below the heading */
}

/* Ensure the list items are centered */
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* Center the text inside the list */
}

.footer-box ul .nav-item {
  margin-bottom: 10px; /* Add space between list items */
}

/* Footer rights section */
.container-rights {
  text-align: center; /* Center the footer text */
  margin-top: 20px; /* Add spacing between the sections */
}

.container-rights footer .col-md-4 {
  justify-content: center; /* Center the content of the footer section */
  text-align: center; /* Ensure the text is centered */
}

.container-rights footer .text-white {
  font-size: 0.9rem; /* Slightly reduce the font size */
}
}

@media (min-width: 576px) and (max-width: 992px) {
    /* Navbar Styling */
    .navbar {
      padding:10px;
      position: absolute; /* Overlay on the carousel */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      font-size: 12px; /* Smaller font for small devices */
  }
  
  .navbar-brand {
      font-size: 24px; /* Slightly larger for branding */
      color: black; /* Ensure visibility */
  }
  
  .nav-link {
      font-size: 20px; /* Smaller font for links */
      color: black !important; /* Force white text for visibility */
     
  }
  .navbar a:hover{
      color:white;
      text-decoration: underline;
  }
  .navbar-toggler {
      border-color: #fff; /* White border for toggle icon */
  }
  .navbar-collapse {
      text-align: right;
  }
  
  .navbar-toggler-icon {
      width: 30px; /* Set smaller width */
      height: 30px; /* Set smaller height */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28150, 150, 150, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .header {
    padding-top: 40px;
    font-size: 3.5rem; /* Smaller heading */
  }
  .about-rooms .text {
    font-size: 1rem; /* Smaller font size */
    line-height: 1.4;
    margin: 0 10px; /* Adjust horizontal spacing */
  }
}